:root {
  --p-color: #3e95ff;
  --s-color: #ffffff;
  --t-color: #000000;




  --background-item: #121826;
  --background-item-hover: #ffffff;
  --item-non-hover: #FEFEFE;
  --text-link: #C9CDD2;
  --text-link-accent: #DADBDE;
  --line-color: #222836;






  --text-color: #ffffff;
    --footer-bg: #000000;
    --footer-bottom-bg: #ffffff;
    --white: white;
    --link-color: #3e95ff;
    --link-hover: #3e95ff;
    --button-border: #3d689a;


    --background: transparent;
    --primary-color: #18A7FA;
    --secondary-color: #000000;
}
/*? footer reset */
*,
*::after,
*::before {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*
  box-shadow: 0 0 0 3px red inset;
*/
}
/**/
/*POLICE*/
@font-face {
  font-family: 'nevrada_neueuploaded_file';
  src: url('../POLICE/nevrada_neue-webfont.woff2') format('woff2'),
       url('../POLICE/nevrada_neue-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'speedyblack_italic';
  src: url('../CODE DU SITE/POLICE/speedy-blackitalic-webfont.woff2') format('woff2'),
       url('../CODE DU SITE/POLICE/speedy-blackitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;


}


@font-face {
  font-family: 'akira_expandedsuper_bold';
  src: url('../POLICE/akira_expanded_demo-webfont.woff2') format('woff2'),
       url('../POLICE/akira_expanded_demo-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'calvierregular';
  src: url('../POLICE/calvier-webfont.woff2') format('woff2'),
       url('../POLICE/calvier-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




@font-face {
  font-family: 'bisonbold';
  src: url('../POLICE/bison-bold-webfont.woff2') format('woff2'),
       url('../POLICE/bison-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}



/*TEXTE / TITRE*/
h1 {
  color: rgb(255, 255, 255);
  position: relative;
  height: 10%;
  margin-left: 40px;
  margin-top: 30px;
  letter-spacing: 4px;
  display: block;
  align-items: center;
  top: 15%;

}





.p3 {
  color: rgb(255, 255, 255);
  font-family: "nevrada_neueuploaded_file";
  text-align: start;
  margin-left: 100px;
  margin-top: 30px;
  font-weight: bold;
  font-size: 25px;
  cursor: pointer;
}
.p4{
  color: #18A7FA;
  position: relative;
  top: 5px;
  height: 10%;
  font-size: 150%;
  right: 50px;
  margin-top: 5%;
  letter-spacing: 8spx;
  text-align: left;
  font-family: "nevrada_neueuploaded_file";
  border-style: solid;
  border-width: 2px;
  border-color: #18A7FA;
  margin: 5px;
}


a {
  text-decoration: none;
  color: #ffffff;

  transition: color 0.3s ease;
}

a:hover {
  color: #000000;
}






.a1 {
  position: absolute;
  top: 3%;
  right: 0%;
  text-decoration: none;
  color:#18A7FA;
  cursor: pointer;
  transition: color 0.3s ease;
}
.a1:hover {
  color: #000000;
}
.a-buttom {
  text-decoration: none;
  color: var(--s-color);
  transition: color 0.3s ease;
}

.a-buttom:hover {
  color:var(--p-color);
}



/*CORPS*/

/*VIDEO*/


/*PUB*/








/*CONTENUE*/




















































.wrapper{
  max-width: 400px;
  width: 100%;
  cursor: default;
}
.wrapper header{
  font-size: 30px;
  font-weight: 600;
}
.wrapper .inputField{
  margin: 20px 0;
  width: 100%;
  display: flex;
  height: 45px;
  margin-left: 5px;
}
.inputField input{
  width: 70%;
  height: 100%;
  outline: none;
  border-radius: 14px;
  border: 1px solid var(--t-color);
  font-size: 15px;
  padding-left: 15px;
  transition: all 0.3s ease;
}
.inputField input:focus{
  border-color: var(--t-color);
}
.inputField button{
  cursor: pointer;
  width: 50px;
  height: 100%;
  border: none;
  color: #fff;
  margin-left: 5px;
  font-size: 21px;
  outline: none;
  background: var(--t-color);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.inputField button:hover,
.footer button:hover{
  background: var(--s-color);
  color: var(--t-color);
}
.inputField button.active{
  opacity: 1;
  pointer-events: auto;
}
.wrapper .todoList{
  height: auto;
  overflow-y: auto;
  border-left: 2px solid var(--s-color);
}
.todoList li{
  position: relative;
  list-style: none;
  margin-bottom: 4px;
  margin-top: 4px;
  background: #f2f2f2;
  border-radius: 3px;
  padding: 10px 15px;
  margin-left: 4px;
  cursor: default;
  overflow: hidden;
  word-wrap: break-word;
}
.todoList li .icon{
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  background: #e74c3c;
  width: 45px;
  text-align: center;
  color: #fff;
  padding: 10px 15px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.todoList li:hover .icon{
  right: 0px;
}
.wrapper .footer{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.footer button{
  height: 100%;
  width: 100%;
  padding: 6px 10px;
  border-radius: 3px;
  border: none;
  outline: none;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  margin-left: 5px;
  background: var(--t-color);
  user-select: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.footer button.active{
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
}










































































































































































/*BTN POP UP CONFIRME / RETOURS*/









.tt-boutton{
  height: auto;
  width: 100%;

  justify-content: space-between;
  display: inline-flex;
  padding-left: 20px;
}





.btn-99,
.btn-99 *,
.btn-99 :after,
.btn-99 :before,
.btn-99:after,
.btn-99:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-99 {
  -webkit-tap-highlight-color: transparent;
  background-color: #000;
  background-image: none;
  color: #000000;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
.btn-99:disabled {
  cursor: default;
}
.btn-99:-moz-focusring {
  outline: auto;
}
.btn-99 svg {
  display: block;

}
.btn-99 [hidden] {
  display: none;
}
.btn-99 {
  --margin: 20%;
  background: none;
  -webkit-clip-path: polygon(
    calc(var(--margin) * -1) 0,
    calc(100% + var(--margin)) 0,
    calc(100% + var(--margin)) 100%,
    calc(var(--margin) * -1) 100%
  );
  clip-path: polygon(
    calc(var(--margin) * -1) 0,
    calc(100% + var(--margin)) 0,
    calc(100% + var(--margin)) 100%,
    calc(var(--margin) * -1) 100%
  );
  display: inline;
  font-weight: 900;
  position: relative;
  text-transform: uppercase;
  transition: 0.2s;
}
.btn-99:hover {
  transform: scale(1.1);
}
.btn-99:before {
  background: #000000;
  content: "";
  height: 2px;
  left: -100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
  width: calc(100% + var(--margin) * 2);
}
.btn-99:hover:before {
  transform: translate(calc(100% - var(--margin) * 2), -50%);
}








.btn-85,
.btn-85 *,
.btn-85 :after,
.btn-85 :before,
.btn-85:after,
.btn-85:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-85 {
  -webkit-tap-highlight-color: transparent;
  background-color: #000;
  background-image: none;
  color: var(--s-color);
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  margin-right: 0px;
  justify-items: end;
  justify-content: end;
}
.btn-85:disabled {
  cursor: default;
}
.btn-85:-moz-focusring {
  outline: auto;
}
.btn-85 svg {
  display: block;

}
.btn-85 [hidden] {
  display: none;
}
.btn-85 {
  background: none;
  border-radius: 999px;
  box-sizing: border-box;
  display: block;
  padding: 1.2rem 3rem;
  position: relative;
  text-transform: uppercase;
}
.btn-85 span {
  font-weight: 900;
  mix-blend-mode: difference;
  transition: opacity 0.2s;
}
.btn-85:hover span {
  -webkit-animation: text-reset 0.2s 0.8s forwards;
  animation: text-reset 0.2s 0.8s forwards;
  opacity: 0;
}
.btn-85:after,
.btn-85:before {
  border: 4px solid var(--p-color);
  border-radius: 999px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: height 0.2s cubic-bezier(0.41, 2.01, 0.64, 1);
  width: 100%;
}
.btn-85:after {
  background: var(--p-color);
  border: none;
  height: 2rem;
  width: 0;
  z-index: -1;
}
.btn-85:hover:before {
  -webkit-animation: border-reset 0.2s cubic-bezier(0.41, 2.01, 0.64, 1) 0.78s
    forwards;
  animation: border-reset 0.2s cubic-bezier(0.41, 2.01, 0.64, 1) 0.78s forwards;
  height: 2rem;
}
.btn-85:hover:after {
  -webkit-animation: progress-bar 1s cubic-bezier(0.41, 2.01, 0.64, 1) forwards;
  animation: progress-bar 1s cubic-bezier(0.41, 2.01, 0.64, 1) forwards;
}
@-webkit-keyframes progress-bar {
  0% {
    opacity: 1;
    width: 0;
  }
  10% {
    opacity: 1;
    width: 15%;
  }
  25% {
    opacity: 1;
    width: 25%;
  }
  40% {
    opacity: 1;
    width: 35%;
  }
  55% {
    opacity: 1;
    width: 75%;
  }
  60% {
    opacity: 1;
    width: 100%;
  }
  to {
    opacity: 0;
    width: 100%;
  }
}
@keyframes progress-bar {
  0% {
    opacity: 1;
    width: 0;
  }
  10% {
    opacity: 1;
    width: 15%;
  }
  25% {
    opacity: 1;
    width: 25%;
  }
  40% {
    opacity: 1;
    width: 35%;
  }
  55% {
    opacity: 1;
    width: 75%;
  }
  60% {
    opacity: 1;
    width: 100%;
  }
  to {
    opacity: 0;
    width: 100%;
  }
}
@-webkit-keyframes border-reset {
  0% {
    height: 2rem !important;
  }
  to {
    height: 100% !important;
  }
}
@keyframes border-reset {
  0% {
    height: 2rem !important;
  }
  to {
    height: 100% !important;
  }
}
@-webkit-keyframes text-reset {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes text-reset {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}




/*POP UP INSCRIPTION */



.modal-btn {
  padding: 10px 14px;
  font-size: 18px;
  margin: 100px auto;
  display: block;
  min-width: 150px;
  cursor: pointer;
}

.modal-container {
  /* display: none; */
  visibility: hidden;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  transition: visibility 0.4s;
}
.modal-container.active {
  /* display: block; */
  visibility: visible;
  backdrop-filter: blur(20px);
}

.pop-up {
  font-family: Raleway, Helvetica, sans-serif;
  color: #cdfe08;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #333333d3;
  transition: opacity 0.4s 0.2s ease-out;
}
.modal-container.active .pop-up {
  transition: opacity 0.4s ease-out;
    font-family: Raleway, Helvetica, sans-serif;
}

.modal {
  opacity: 0;
  width: 95%;
  max-width: 500px;
  min-width: 300px;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 50px));
  transition: opacity 0.4s ease-out,
  transform 0.4s ease-out;
}

.modal-container.active .modal {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s 0.2s ease-out,
  transform 0.4s 0.2s ease-out;
}

.close-modal {
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: #ff365e;
  color: #fff;
}
.modal h1 {
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}
.modal p {
  line-height: 1.4;
  margin-bottom: 5px;
}


























































































/*MENU vertical*/

nav {
  width: 100%;
}

a {
  cursor: pointer;
}

.avatar-wrapper:hover .img-top {
    display: inline;
    transition: all 0.2s ease-in-out;
}
    .navigation__menu {
      background-color: var(
          --background
      );
      z-index: 3;
      background-color: #18A7FA;
      border-left: 1px solid var(--github-dark-border);
      height: 100vh;
      opacity: 1;
      display: flex;
      width: 100%;
      flex-direction: column;
      padding: 12px;
      right: 0;
      position: fixed;
      box-shadow: 
      rgba(100, 100, 111, 0.2)
      0px 7px 29px 0px;
      animation: fadeInAnimation 
      ease-in-out 0.5s forwards;
    }
    
    .navigation__menu__items {
      display: flex;
      flex-direction: column;
      gap: 8px;
      list-style-type: none;
      margin: 0px;
      margin-top: 30px;
      padding: 0px;
      color: var(--github-button-hover);
    }
    
    .navigation__menu__items> a > li {
      display: flex;
      gap: 15px;
      font-size: 20px;
      height:50px;
      border-radius: 6px;
      align-items: center;
      cursor: pointer;
      color: var(--color);
      padding: 0px 10px;
      transition: 1ms;
    }
    
    .navigation__menu__items > li:hover {
      background-color: var(--navigation-hover);
      color: var(--github);
    }
    
    .navigation__menu__items > li > svg {
      fill: var(--github);
      font-size: 100px;
    }
    
    .navigation__menu__items > .separator {
      display: flex;
      align-items: center;
      height: 10px;
      padding: 0px;
    }
    
    .navigation__menu__items > .separator:hover  {
      background-color: var(--background);
    }
    
    .navigation__menu__items > .separator > hr {
      border: 1px solid var(--github-dark-border);
      width: 100%;
    }
    
    .avatar-wrapper {
      display: flex;
      height: 40px;
      font-size: 20px;
      gap: 8px;
      align-items: center;
    }
    
    .avatar-wrapper .avatar-profile {
      width: 42px;
      height: 42px;
    }
    
    .avatar-name-wrapper {
      display: flex;
      flex-direction: column;
    }
    
    .avatar-name-alias {
      color: var(--github);
      font-weight: 600;
    }
    
    .avatar-name {
      color: var(--color);
      font-size: 12px;
    }
    
    .close-button {
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 6px;
      margin-left: auto;
      cursor: pointer;
      height: 32px;
      width: 32px;
    }
    
    .close-button:hover {
      background-color: var(--navigation-hover);
    }
    
    .close-button svg {
      height: 25px;
      width: 25px;
      fill: var(--github);
    }
    
    @keyframes fadeInAnimation {
      0% {
          opacity: 0;
          visibility: hidden;
          max-width: 0px;
      }
      100% {
          opacity: 1;
          visibility: visible;
          max-width: 320px;
      }
    }
    
    .none {
      display: none;
    }
    
    .hide {
      opacity: 0;
      visibility: hidden;
      animation: fadeOutAnimation 
    }
    
    @keyframes fadeOutAnimation {
      0% {
          opacity: 1;
          max-width: 320px;
          visibility: visible;
      }
      100% {
          opacity: 0;
          max-width: 0px;
          visibility: hidden;
      }
    }


    @media (max-width: 990px) {
      .menu {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: stretch;
        height: 20%;
        opacity: 0;
      }
      
    }
    

    
    
    .menu {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: stretch;
      height: 20%;
    }
    
    .menu li {
      display: inline-block;
      width: auto;
      height: 100px;
      transition: all 0.3s ease-in-out;
    }
    
    .menu li:hover .submenu {
      height: 85px;
    }
    
    .menu > li:hover > a {
      color: var(--link-color);
    }
    
    .menu > li:hover > a::before {
      visibility: visible;
      scale: 1 1;
    }
    
    .submenu {
      overflow: hidden;
      position: absolute;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: stretch;
      width: 100%;
      background-color: var(--link-color);
      height: 0%;
      box-sizing: border-box;
      transition: height 0.3s ease-in-out;
      z-index: 10;
    }
    .menu li .submenu a {
      color: #fff;
      opacity: 0;
      font-size: 16px;
      transition: opacity 0.25s;
      z-index: 10;
    }
    
    .menu > li:hover .submenu a {
      opacity: 1;
    }
    
    .menu > li .submenu a:hover {
      background: rgb(0 0 0 / 20%);
      z-index: 10;
    }
    
    .menu > li a {
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 10px;
      text-decoration: none;
      position: relative;
      height: 120%;
    }
    
    .menu > li > a::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 3px;
      bottom: 3px;
      align-items: center;
      justify-content: center;
      left: 0px;
      background-color: var(--link-color);
      transition: all 0.2s ease-in-out;
      scale: 0 0;
      visibility: hidden;
      z-index: 10;
    }


























































  



















/*  MENU HORIZONTAL BAR DROITE  */

.figure img.Sirv.image-hover {
  position: absolute;
  left:6%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .2s;
}
.main-item:hover img.Sirv.image-hover {
  opacity: 1;
}
.dropdown > ul > li a:hover img.Sirv.image-hover {
  opacity: 1;
}
.dropdown > ul > li  img.Sirv.image-hover {
  position: absolute;
  left:5%;
  object-fit: contain;
  opacity: 0;
  transition: opacity ;
}

.dropdown > ul > li > a


  
    
.dropdowns {
  min-width: 10rem;
  width: 100%;
  max-width: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: transparent;
  font-family: 'speedyblack_italic';
  font-size: 20px;
}

.main-items {
  padding: 0.5rem;
  height: 50px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: start;
  border-radius: 0.5rem;
  user-select: none;
  font-size: 1rem;
  font-family: 'speedyblack_italic';
  font-size: 20px;
  gap: 1rem;
  border: none;
  width: 100%;
  background: transparent;
  transition: all ease-in-out 0.25s;
  color: var(--s-color);
}
.main-items:hover {
  background-color: #ffd700 ;
  text-align: center;
}

.a-prenuim {
  -webkit-transition: color 0s;
  transition: color 0s;

}
.a-prenuim:hover {
  color: #ffffff;
}

.main-items--open + ul {
  visibility: visible;
  max-height: 400px;
  padding-left: 22px;
  opacity: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.main-items svg {
  stroke: var(--item-non-hover);
  transition: all ease-in-out 0.25s;
}

.main-items:hover svg {
  stroke: var(--t-color);
}

.main-items--open {
  border-radius: 8px;
  transition: all 200ms;
  color: var(--s-color);
}

.main-items--open:hover {
  color: var(--t-color);
  border-radius: 8px;
  background-color: var(
    --background-item-hover);
}

.main-items--open svg {
  stroke: var(--s-color);
}
  
  
  



.dropdown {
  min-width: 10rem;
  width: 100%;
  max-width: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: transparent;
  font-family: 'speedyblack_italic';
  font-size: 20px;
}

.main-item {
  padding: 0.5rem;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: start;
  border-radius: 0.5rem;
  user-select: none;
  font-size: 1rem;
  font-family: 'speedyblack_italic';
  font-size: 20px;
  gap: 1rem;
  border: none;
  width: 100%;
  background: transparent;
  transition: all ease-in-out 0.25s;
  color: var(--s-color);
}

.main-item:hover {
  background-color: var(--s-color) ;
  color: var(--t-color);
}

.main-item svg {
  stroke: var(--item-non-hover);
  transition: all ease-in-out 0.25s;
}

.main-item:hover svg {
  stroke: var(--t-color);
}

.main-item--open {
  border-radius: 8px;
  transition: all 200ms;
  color: var(--s-color);
}

.main-item--open:hover {
  color: #000000;
  border-radius: 8px;
  background-color: var(
    --background-item-hover);
}

.main-item--open svg {
  stroke: var(--s-color);
}

.dropdown > ul {
  max-height: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 14px;
  opacity: 0;
  font-size: smaller;
  visibility: hidden;
  transition: all ease-in-out 0.2s;
}

.main-item--open + ul {
  visibility: visible;
  max-height: 400px;
  padding-left: 22px;
  opacity: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.dropdown > ul > li {
  display: flex;
  width: 100%;
  font-size: 0.9rem;
  align-items: center;
  border-left: 2px solid var(--s-color);
}

.dropdown > ul > li > a {
  color: var(--s-color);
  padding: 1rem 0.75rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 0.5rem;
  margin-left: 1rem;
  width: 100%;
}

.dropdown > ul > li:hover {
  color: var(--p-color);
  cursor: pointer;
}

.dropdown > ul > li:hover > a {
  color: var(--t-color);
  background: var(--background-item-hover);
  width: 100%;
}

.expand-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
  transform: rotate(90deg);
}

.main-item--open > .expand-icon {
  transform: rotate(-90deg);
}






/* Sidenav menu */
.sidenav {
  height: 100vh;
  width: 320px;
  position: fixed;
  z-index: 10;
  top: 0;
  right: -320px;
  background-color: var(--link-color);
  padding-top: 80px;
  transition: right 0.5s ease;
}
/* Sidenav menu links */
.sidenav a {
  text-decoration: none;
  font-size: 25px;
  color: var(--s-color);
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #111;
}

.sidenav ul {
  list-style-type: none;
  padding: 1px;
  margin-left: 10px;
}

/* Active class */
.sidenav.active {
  right: 0;
}

/* Close btn */
.sidenav .close {
  position: absolute;
  top: 15px;
  right: 40px;
  font-size: 66px;
}

/* Icône burger */
.menu-burger{
  position: absolute;
  top: 10px;
  height: 100px;
  width: 200px;
}
.menu-burger-img{
  height: auto;
  width: 100%;
  object-fit: cover;
}






/*BOUTTON PROFIL DU MENU HORIZONTAL A DROITE*/



.avatar-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.avatar-wrapper .avatar-profile {
  width: 32px;
  height: 32px;
  border-radius: 20px;
}

.avatar-name-wrapper {
  display: flex;
  flex-direction: column;
  transform: translate(80px , -160%);
  height: 100%;
  width: 100%;
}

.avatar-name-alias {
  color: var(--github);
  font-size: 20px;
}

.avatar-name {
  color: var(--color);
}



.avatar-wrapper .img-top {
display: none;
position: absolute;
top: 0;
left: 0;
z-index: 99;
}

.avatar-profile{
margin-top: 15px;
width: 70px;
height:70px;
border-radius: 1000px;
object-fit: scale-down;

}
.avater-profil-image{
cursor: pointer;
object-fit: cover;
height: 70px;
}


.boutton-profil{
position: absolute;
width: 100%;
height: 10%;
padding-left: 20px;
bottom: 0px;
}
.boutton-profil:hover{

margin-left: 0px;
height: 10%;
cursor: pointer;
align-items: center;
justify-content: start;
border-radius: 0.5rem;
user-select: none;
font-size: 1rem;
font-family: 'speedyblack_italic';
font-size: 20px;
gap: 1rem;
border: none;
width: 100%;
background: transparent;
transition: all ease-in-out 0.25s;
background-color: var(--s-color);
/*
height: 100px;
display: flex;
cursor: pointer;
align-items: center;

justify-content: start;
border-radius: 0.5rem;
user-select: none;
font-size: 1rem;
font-family: 'speedyblack_italic';
font-size: 20px;
gap: 1rem;
border: none;
width: 100%;
background: transparent;
transition: all ease-in-out 0.25s;
color: var(--s-color);
*/
}

.menu-vertical-logo{
position: absolute;
width: 80%;
height: 50px;
top: 0px;
}
.menu-vertical-logo:hover{
cursor: pointer;
}
























































































.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 100px 50px;
  padding: 100px 50px;
}

.container .card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 350px;
  max-width: 100%;
  height: 300px;
  background: white;
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.container .card:hover {
  height: 400px;
  cursor: pointer;
}

.container .card .img-box {
  position: absolute;
  top: 20px;
  width: 300px;
  height: 220px;
  background: #333;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.5s;
}

.container .card:hover .img-box {
  top: -100px;
  scale: 0.75;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.container .card .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .card .content {
  position: absolute;
  top: 252px;
  width: 100%;
  height: 35px;
  padding: 0 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
}

.container .card:hover .content {
  top: 130px;
  height: 250px;
}

.container .card .content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr);
}

.container .card .content p {
  color: #333;
}

.container .card .content a {
  position: relative;
  top: 15px;
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  background: var(--clr);
  color: white;
  font-weight: 500;
}

.container .card .content a:hover {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .container .card {
      width: 230px;
      border-radius: 15px;
  }

  .container .card .img-box {
      width: 185px;
      border-radius: 10px;
  }

  .container .card .content p {
      font-size: 0.8rem;
  }

  .container .card .content a {
      font-size: 0.9rem;
  }
}







































































































































































/*LOGO PRINCIAPALE*/





.logosimple {
  position: absolute;
  width: 100%;
  margin-left: 5%;
  object-fit: contain;
  transition: transform .5s;
}

.logosimple:hover{
  -ms-transform: scale(1.2); /* IE 9 */
  -webkit-transform: scale(1.2); /* Safari 3-8 */
  transform: scale(1.2);
  }



























  




















































































/*BAS DE PAGE*/




.footer-wrapper {
  display: flex;
  flex-direction: column;

  width: 100%;
  margin: 0 auto;
  padding-bottom: 16px;
  padding-top: 16px;
}

.footer-logo-columns {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 4;
  gap: 48px 16px;
}

.footer-legal-commentaire{
  width: 100%;
  height: auto;
}



.subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 8rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  height: 3rem;
  font-weight: 700;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  background-color: var(--secondary-color);
  border: 2px solid var(--white);
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.subscribe-btn:hover {
  border: 3px solid var(--secondary-color);
  background-color: var(--white);
  color: var(--secondary-color);
}




.footer-logo {
  margin-bottom: 2rem;
  width: 3rem;
}

.image-pub{
  height: 10px;
}





.footer-logo-column {
  display: flex;
  grid-area: footer-logo;
  flex-direction: column;
  min-width: 16rem;
  flex-grow: 1;
  padding: 16px;
  background-color: var(--link-color);
}

.footer-logo-column p {
  color: var(--text-color);
  font-size: 1.06rem;
  margin-bottom: 1.5rem;
}

.footer-logo-column h3 {
  color: var(--white);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

/* other columns */

@media (min-width: 400px){

.other-columns {
  width: 90%;
  height: auto;
  margin-left: 5%;
  }
}

.other-columns ul {
  display: flex;
  gap: 0.75rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  font-weight: 600;
  padding-top: 2rem;
  margin-bottom: 16px;
}

.other-columns ul a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.3em;
}

.other-columns ul a:hover {
  text-decoration: underline;
}


.footer-logo svg {
  fill: var(--white);
}

/*? Footer bottom */
.footer-bottom {
  margin-top: 48px;
  width: 100%;
  padding: 1rem 0px;
  color: var(--text-color);
  background-color: var(--footer-bottom-bg);
}

.footer-bottom-wrapper {
  display: flex;
  max-width: 1024px;
  margin: 0 auto;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 1rem;
}

.footer-bottom-links {
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-bottom-links a {
  color: var(--link-color);
  text-decoration: none;
  white-space: nowrap;
}

.footer-bottom-links a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.footer-bottom>small {
  font-size: 1rem;
  margin: 0 auto;
  width: 100%
}

/*? socials */
.social-wrapper {
  display: flex;
  gap: 0.5rem;
  margin: 0 auto;
}

.social-links {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.social-links img {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.2s ease-in-out;
}

.social-links img:hover {
  transform: scale(1.1);
}

.social-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style-type: none;
}

.footer-bottom-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*? footer containers */
footer {
  bottom: 0px;
  background-color: var(--footer-bg);
  width: 100%;
  bottom: 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 200px;
}







.avatar {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
}

.discussion {
  background-color: var(--white);
  border-radius: 1rem;
  position:absolute;
  top: 5%;
  margin: 20px;
  user-select: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.discussion__header {
  background-color: var(--gray-light);
  border-bottom: var(--gray-borders);
  display: flex;
  gap: 0.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
  padding: 16px;
  width: 100%;
}

.discussion__header textarea {
  border: 1px solid var(--gray-borders);
  padding: 0.5rem;
  border-radius: 0.25rem;
  height: 3rem;
  transition: height 0.3s ease-in-out;
  resize: none;
  width: 100%;
  font-family: 'speedyblack_italic';
}

.discussion__header textarea:focus {
  outline: none;
  height: 5rem;
  border: 1px solid var(--primary);
}

.comment {
  display: flex;
  padding: 1rem;
  min-height: 6rem;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gray-borders);
  font-family: 'speedyblack_italic';
}

.newcomment__toolbar {
  justify-content: end;
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem;
}

.newcomment__toolbar button {
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-family: 'speedyblack_italic';
}

.button--primary {
  background-color: var(--link-color);
  color: var(--white);
  min-width: 5rem;
}

.comment__text {
  font-size: 0.75rem;
}

.comment__author {
  font-size: 0.8rem;
}

.comment__date {
  font-size: 0.75rem;
  margin-left: 0.2rem;
  color: var(--gray-dark);
}






@media (min-width: 900px) {
  .other-columns {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom-wrapper {
      flex-direction: row;
  }


  .footer-bottom-links {
      margin-left: 1.5rem;
  }
}
@media (max-width: 1000px) {
  .footer-bottom {
    margin-top: 150px;
  }
}

@media (max-width: 800px) {
  .footer-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1rem 0.5rem 2rem 0.5rem;
  }
}


@media (max-width: 1112px) {

}




















































